Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 480 | Author: cody
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!-- Based on CSS Loaders Tutorial by Shaun Pelling - The Net Ninja (2020)
see: https://www.youtube.com/watch?v=GFkorypkXsQ&list=PL4cUxeGkcC9guBMasBotBhq_cmvXhyr6t -->

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="style.css" />
    <title>CSS Loaders</title>
  </head>
  <body>
    <!-- spinner -->
    <div class="spinner">
      <div></div>
      <div></div>
    </div>

    <!-- bouncing balls -->
    <div class="bouncer">
      <div></div>
      <div></div>
      <div></div>
      <div></div>
    </div>

    <!-- flipping squares -->
    <div class="square">
      <div></div>
      <div></div>
    </div>
  </body>
</html>